home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Tools / Mesa-1.2.1 / src-glu / gluP.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-05  |  1.4 KB  |  61 lines

  1. /* gluP.h */
  2.  
  3. /*
  4.  * Mesa 3-D graphics library
  5.  * Version:  1.2
  6.  * Copyright (C) 1995  Brian Paul  (brianp@ssec.wisc.edu)
  7.  *
  8.  * This library is free software; you can redistribute it and/or
  9.  * modify it under the terms of the GNU Library General Public
  10.  * License as published by the Free Software Foundation; either
  11.  * version 2 of the License, or (at your option) any later version.
  12.  *
  13.  * This library is distributed in the hope that it will be useful,
  14.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  16.  * Library General Public License for more details.
  17.  *
  18.  * You should have received a copy of the GNU Library General Public
  19.  * License along with this library; if not, write to the Free
  20.  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  */
  22.  
  23.  
  24. /*
  25. $Id: gluP.h,v 1.2 1995/05/22 16:56:20 brianp Exp $
  26.  
  27. $Log: gluP.h,v $
  28.  * Revision 1.2  1995/05/22  16:56:20  brianp
  29.  * Release 1.2
  30.  *
  31.  * Revision 1.1  1995/05/16  19:18:02  brianp
  32.  * Initial revision
  33.  *
  34.  */
  35.  
  36.  
  37.  
  38. /*
  39.  * This file allows the GLU code to be compiled either with the Mesa
  40.  * headers or with the real OpenGL headers.
  41.  */
  42.  
  43.  
  44. #ifndef GLUP_H
  45. #define GLUP_H
  46.  
  47.  
  48. #include "GL/gl.h"
  49. #include "GL/glu.h"
  50.  
  51.  
  52. #ifndef MESA
  53.    /* If we're using the real OpenGL header files... */
  54.    typedef GLenum GLUenum;
  55. #  define GLU_TESS_ERROR9    100159
  56. #  define GLU_NO_ERROR        GL_NO_ERROR
  57. #endif
  58.  
  59.  
  60. #endif
  61.